home *** CD-ROM | disk | FTP | other *** search
/ Interplay's Learn to Program Basic (Review Copy) / Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO / pc / ltpbasic / exercise / triangle.bas < prev   
Encoding:
BASIC Source File  |  1998-04-07  |  90 b   |  8 lines

  1. For rownumber = 1 to 6
  2. for X = 1 to rownumber
  3. print "x";
  4. next X
  5. print
  6. next rownumber
  7. end